home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 11 / AMUG BBS in a Box Volume XI (April 1994) (MacWizards).iso / Files / Prog / B-C / C++ CDEV.sit / C++ CDEV ƒ / UHandleObject.cp / UHandleObject.cp
Encoding:
Text File  |  1991-08-24  |  251 b   |  17 lines  |  [TEXT/MPS ]

  1. /*
  2.  *    UHandleObject.cp
  3.  *    
  4.  *    KNOWN BUGS AND SHORTCOMINGS:
  5.  *        [none]
  6.  */
  7.  
  8. #ifndef __UHANDLEOBJECT__
  9. #include <UHandleObject.h>
  10. #endif
  11.  
  12. SignedByte THandleObject::LockHigh() {
  13.     SignedByte oldState = GetState();
  14.     MoveHigh();
  15.     Lock();
  16.     return oldState;
  17. }